home *** CD-ROM | disk | FTP | other *** search
/ SCI Games E3 2005 Press Kit (USA) / SCI Games E3 2005 Press Kit (USA).bin / runme_mac.swf / scripts / __Packages / mx / controls / streamingmedia / CuePoint.as < prev    next >
Text File  |  2005-05-05  |  259b  |  13 lines

  1. class mx.controls.streamingmedia.CuePoint
  2. {
  3.    function CuePoint(aName, aTime)
  4.    {
  5.       this.name = aName;
  6.       this.time = aTime;
  7.    }
  8.    function toString()
  9.    {
  10.       return "CuePoint: " + this.name + " at " + this.time + " seconds";
  11.    }
  12. }
  13.